home *** CD-ROM | disk | FTP | other *** search
/ Creative Computers / Creative Computers CD-ROM, Volume 1 (Legendary Design Technologies, Inc.)(1994).iso / shareware / fractals / apfelkiste / apfelkiste1.3 / includes / libraries / color.h < prev    next >
C/C++ Source or Header  |  1994-11-17  |  486b  |  25 lines

  1. #ifndef COLOR_H
  2. #define COLOR_H
  3.  
  4. #include <exec/types.h>
  5. #include <intuition/intuition.h>
  6.  
  7. #define COLORNAME    "color.library"
  8. #define COLORVERSION    1L
  9.  
  10. struct ColorBase;
  11.  
  12. long DoColor(UWORD *defaultTable, struct Screen *screen);
  13.  
  14. #ifndef NO_PRAGMAS
  15. #pragma libcall ColorBase DoColor        001E    9802
  16. #endif
  17.  
  18. #define COLOR_ERROR_LIBRARY_IN_USE    -4
  19. #define COLOR_ERROR_NULL_SCREEN        -3
  20. #define COLOR_ERROR_NO_DEPTH        -2
  21. #define COLOR_ERROR_CANT_OPEN_WINDOW    -1
  22. #define COLOR_ERROR_ALL_OK         0
  23.  
  24. #endif
  25.